home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-12-20 | 379 b | 22 lines |
- #
- # Unix makefile for inductance calculator
- #
- # Modify -lc, -lm appropriately for your system.
- #
- all: coil tables
-
- coil: coil.o formulae.o mathl.o
- cc -o coil coil.o formulae.o mathl.o -lm
-
- tables: tables.o formulae.o mathl.o
- cc -o tables tables.o formulae.o mathl.o -lm
-
- coil.o: coil.c
-
- formulae.o: formulae.c lyle.h
-
- mathl.o: mathl.c
-
- tables.o: tables.c
-
-